ComponentOne Bitmap for UWP
C1.UWP.DX Assembly / C1.Util.DX Namespace / SetValueFastDelegate<T> Delegate
Type of the setter.
The obj to set the property from.
The value to set.

In This Topic
    SetValueFastDelegate<T> Delegate
    In This Topic
    A Delegate to set a property value to an object.
    Syntax
    'Declaration
     
    Public Delegate Sub SetValueFastDelegate(Of T)( _
       ByVal obj As System.Object, _
       ByRef value As T _
    ) 
    public delegate void SetValueFastDelegate<T>( 
       System.object obj,
       ref T value
    )

    Parameters

    obj
    The obj to set the property from.
    value
    The value to set.

    Type Parameters

    T
    Type of the setter.
    See Also